🎖️GitЯра🎖️
Commit 988db081b289cbc23d9bceef8e7d85ab46d0e6a4
Parents : 4e27416
Author : James Rich <james.a.rich@gmail.com>
Date : 2026-06-10T17:12:52-05:00
fix(discovery): use protobufs Maven dep after rebase onto #5675
main's #5675 replaced the :core:proto submodule with the org.meshtastic:protobufs
Maven artifact. Rebasing left a stale module reference. Switched to
implementation(libs.meshtastic.protobufs), matching the convention (cf. feature/node).
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Changes
Diff
diff --git a/feature/discovery/build.gradle.kts b/feature/discovery/build.gradle.kts
index bfe4b06b77..8fa4407bc0 100644
--- a/feature/discovery/build.gradle.kts
+++ b/feature/discovery/build.gradle.kts
@@ -41,13 +41,13 @@ kotlin {
implementation(projects.core.navigation)
implementation(projects.core.network)
implementation(projects.core.prefs)
- implementation(projects.core.proto)
implementation(projects.core.repository)
implementation(projects.core.resources)
implementation(projects.core.service)
implementation(projects.core.ui)
implementation(libs.kotlinx.collections.immutable)
+ implementation(libs.meshtastic.protobufs)
}
commonTest.dependencies { implementation(projects.core.testing) }
Served by rngit 1.4.2 - Generated in 0.05s